home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_std / arguments.e < prev    next >
Text File  |  1997-04-13  |  305b  |  18 lines

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class ARGUMENTS
  5. --
  6. -- Needed only for ELKS 95 compatibility.
  7. --
  8.  
  9. feature
  10.  
  11.    command_name: STRING is
  12.       do
  13.      Result := command_arguments.item(0);
  14.       end;
  15.  
  16. end -- ARGUMENTS
  17.  
  18.